home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST4-9.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  308b  |  15 lines

  1. ;
  2. ; *** Listing 4-9 ***
  3. ;
  4. ; Measures the performance of repeated MUL instructions,
  5. ; which allow the prefetch queue to be full at all times,
  6. ; to demonstrate a case in which DRAM refresh has no impact
  7. ; on code performance.
  8. ;
  9.     sub    ax,ax
  10.     call    ZTimerOn
  11.     rept    1000
  12.     mul    ax
  13.     endm
  14.     call    ZTimerOff
  15.